All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.naming.NoPermissionException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.naming.NamingException
                           |
                           +----java.naming.NamingSecurityException
                                   |
                                   +----java.naming.NoPermissionException

public class NoPermissionException
extends NamingSecurityException
This exception is raised when attempting to perform an operation for which the client has no permission.


Constructor Index

 o NoPermissionException()
Constructs a new instance of NoPermissionException.
 o NoPermissionException(Name, Object, Name)
Constructs a new instance of NoPermissionException using the arguments supplied.
 o NoPermissionException(Name, Object, Name, String)
Constructs a new instance of NoPermissionException.
 o NoPermissionException(String)
Constructs a new instance of NoPermissionException using the arguments supplied.

Constructors

 o NoPermissionException
 public NoPermissionException(Name resolvedName,
                              Object resolvedObj,
                              Name remainingName,
                              String explanation)
Constructs a new instance of NoPermissionException.

Parameters:
resolvedName - The part of the name that has been successfully resolved.
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
explanation - Additional detail about this exception.
 o NoPermissionException
 public NoPermissionException(Name resolvedName,
                              Object resolvedObj,
                              Name remainingName)
Constructs a new instance of NoPermissionException using the arguments supplied.

Parameters:
resolvedName - The part of the name that has been successfully resolved.
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
 o NoPermissionException
 public NoPermissionException(String explanation)
Constructs a new instance of NoPermissionException using the arguments supplied.

Parameters:
explanation - Additional detail about this exception.
 o NoPermissionException
 public NoPermissionException()
Constructs a new instance of NoPermissionException.


All Packages  Class Hierarchy  This Package  Previous  Next  Index